home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / web / fweb / fweb-1.40 / manual / f0to_web.src < prev    next >
Text File  |  1993-10-29  |  245b  |  18 lines

  1. C --- f0to_web.src---
  2.  
  3. C A simple Fortran example (that does nothing at all).
  4.     program main
  5.  
  6. C Do the computation of alpha.
  7.     call compute
  8.     end
  9.  
  10. C --- COMPUTATIONAL ROUTINES ---
  11.  
  12.     subroutine compute
  13.     call compute1
  14.     end
  15.  
  16.     subroutine compute1
  17.     end
  18.